/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-red: #AC0000;
    --dark-red: #800000;
    --dark-bg: #1a0000;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-cream: #f8f5e6;
    --accent-gold: #d4c789;
    --dark-purple: #1a0022;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    overflow-x: hidden;
    background: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'MuseoModerno', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    letter-spacing: -0.05em;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: var(--dark-red);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary-red);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-red);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Common Section Styles */
.section-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    color: inherit;
}

.section-subtitle {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: currentColor;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    font-size: 0.85rem;
    padding: 12px 28px;
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(172, 0, 0, 0.3);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(172, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(172, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-icon {
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-primary:hover .btn-text {
    transform: translateX(-10px);
}

.btn-primary:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Creative Background Animations */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(172, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 199, 137, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(172, 0, 0, 0.02) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(172, 0, 0, 0.02) 49%, rgba(172, 0, 0, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 199, 137, 0.03) 49%, rgba(212, 199, 137, 0.03) 51%, transparent 52%);
    background-size: 100px 100px, 150px 150px;
    animation: patternMove 30s linear infinite;
    z-index: 1;
}

/* Floating Creative Elements */
.hero .creative-element {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.hero .creative-element:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    animation: float1 15s ease-in-out infinite;
}

.hero .creative-element:nth-child(2) {
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    transform: rotate(45deg);
    animation: float2 12s ease-in-out infinite reverse;
}

.hero .creative-element:nth-child(3) {
    bottom: 20%;
    left: 8%;
    width: 100px;
    height: 40px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    border-radius: 20px;
    animation: float3 18s ease-in-out infinite;
}

.hero .creative-element:nth-child(4) {
    bottom: 15%;
    right: 10%;
    width: 70px;
    height: 70px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hero .creative-element:nth-child(5) {
    top: 50%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float1 14s ease-in-out infinite;
}

.hero .creative-element:nth-child(6) {
    top: 60%;
    right: 5%;
    width: 90px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-gold));
    border-radius: 10px;
    animation: float2 16s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -30px) rotate(1deg); }
    50% { transform: translate(20px, -20px) rotate(-1deg); }
    75% { transform: translate(-10px, 20px) rotate(0.5deg); }
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, -150px 150px; }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(5deg); }
    50% { transform: translateY(-10px) translateX(-15px) rotate(-3deg); }
    75% { transform: translateY(-30px) translateX(5px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-25px) translateX(-10px); }
    66% { transform: translateY(-15px) translateX(20px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.2; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container.spotlight {
    transform: scale(1.2);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Subtle Navigation */
.subtle-nav {
    margin-top: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 15;
}

.subtle-nav:hover {
    opacity: 1;
}

.subtle-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    padding: 0;
}

.subtle-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.subtle-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.subtle-nav a:hover {
    color: var(--primary-red);
}

.subtle-nav a:hover::after,
.subtle-nav a.active::after {
    width: 100%;
}

.subtle-nav a.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* Smooth scroll offset for sections */
section[id] {
    scroll-margin-top: 80px;
}

/* Scrolling animation feedback */
body.scrolling {
    cursor: progress;
}

body.scrolling * {
    pointer-events: none;
}

/* Enhanced smooth scrolling for better performance */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.main-logo {
    color: #AC0000;
    font-family: 'MuseoModerno', cursive;
    font-size: 128px;
    font-weight: 700;
    letter-spacing: -0.11em;
    line-height: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-logo:hover {
    color: #800000;
}

.logo-subtitle {
    color: var(--primary-red);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.3em;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.hero-tagline {
    margin-top: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.1em;
    color: #333;
    background-color: rgba(212, 199, 137, 0.2);
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: var(--primary-red);
    top: 50%;
    transform: translateY(-50%);
}

.hero-tagline::before {
    left: -40px;
}

.hero-tagline::after {
    right: -40px;
}

.hero-description {
    margin-top: 1rem;
    font-size: 18px;
    color: #555;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-button-container {
    margin-top: 2rem;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 15;
}

.btn-solid {
    background: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
    font-size: 0.85rem;
    padding: 12px 28px;
}

.btn-solid:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(172, 0, 0, 0.3);
}

/* Process Section - Modern Timeline Design */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(172, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 199, 137, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Simple Process Header */
.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(172, 0, 0, 0.2);
}

.process-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 25px;
    line-height: 1.2;
}

.process-title .highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.process-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Clean Modern Process Layout */
.process-timeline {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Simple Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.process-step {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
    border-radius: 20px 20px 0 0;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(172, 0, 0, 0.2);
}

/* Clean Header Design */
.step-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    background: rgba(172, 0, 0, 0.02);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-icon {
    width: 45px;
    height: 45px;
    background: rgba(172, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-left: auto;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(172, 0, 0, 0.3);
}

.process-step:hover .step-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

/* Simple Content Area */
.step-content {
    flex: 1;
    padding: 30px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.feature-tag {
    background: rgba(172, 0, 0, 0.1);
    color: var(--primary-red);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-header {
        padding: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

/* Desktop Enhancement */
@media (min-width: 1400px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Chart Animation */
.chart-icon {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    width: 12px;
    background: linear-gradient(to top, var(--primary-red), var(--dark-red));
    border-radius: 6px 6px 0 0;
    animation: chartGrow 2s ease-out infinite alternate;
}

@keyframes chartGrow {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

/* Lightbulb Animation */
.idea-bulb {
    position: relative;
    font-size: 3rem;
    color: var(--primary-red);
}

.bulb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* Calendar Animation */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 80px;
}

.calendar-day {
    width: 8px;
    height: 8px;
    background: #e9ecef;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.calendar-day.active {
    background: var(--primary-red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Camera Animation */
.production-studio {
    position: relative;
}

.camera-icon {
    font-size: 3rem;
    color: var(--primary-red);
    position: relative;
}

.camera-flash {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: flash 3s ease-in-out infinite;
}

@keyframes flash {
    0%, 90%, 100% { opacity: 0; transform: scale(0.5); }
    5%, 15% { opacity: 1; transform: scale(1.5); }
}

/* Rocket Animation */
.rocket-launch {
    position: relative;
    font-size: 3rem;
    color: var(--primary-red);
    animation: rocket 3s ease-in-out infinite;
}

.rocket-trail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    border-radius: 2px;
    animation: trail 3s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes trail {
    0%, 100% { height: 20px; opacity: 0.5; }
    50% { height: 40px; opacity: 1; }
}

/* Results Section */
.process-results {
    margin-top: 100px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.results-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.results-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.result-item {
    text-align: center;
}

.result-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(172, 0, 0, 0.2);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
    line-height: 1;
}

.result-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Enhanced Visual Elements */
.step-deliverable {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    font-size: 0.95rem;
    color: #555;
}

.step-deliverable strong {
    color: var(--primary-red);
}

/* New Visual Animations */
.magnifying-glass {
    position: relative;
    font-size: 3rem;
    color: var(--primary-red);
}

.search-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: searchPulse 2s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes searchPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
}

.strategy-board {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chess-piece {
    font-size: 3rem;
    color: var(--primary-red);
    animation: strategicMove 3s ease-in-out infinite;
}

.strategy-lines {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(172, 0, 0, 0.3);
    border-radius: 10px;
    animation: strategicPlan 4s linear infinite;
}

@keyframes strategicMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes strategicPlan {
    0% { transform: rotate(0deg); opacity: 0.3; }
    100% { transform: rotate(360deg); opacity: 0.3; }
}

.calendar-animation {
    position: relative;
}

.planning-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    animation: planningBounce 2s ease-in-out infinite;
}

@keyframes planningBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.creative-studio {
    position: relative;
}

.palette-icon {
    font-size: 3rem;
    color: var(--primary-red);
    position: relative;
}

.color-splash {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    animation: colorSplash 3s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes colorSplash {
    0%, 100% { transform: scale(0.5) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.launch-stars {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.analytics-dashboard {
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.chart-bars .chart-bar {
    width: 8px;
    background: linear-gradient(to top, var(--primary-red), var(--dark-red));
    border-radius: 4px 4px 0 0;
    animation: chartGrowth 3s ease-out infinite;
}

.chart-bars .chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bars .chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bars .chart-bar:nth-child(4) { animation-delay: 0.6s; }
.chart-bars .chart-bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes chartGrowth {
    0% { transform: scaleY(0.2); }
    50% { transform: scaleY(1.1); }
    100% { transform: scaleY(1); }
}

.growth-arrow {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5rem;
    animation: growthTrend 2s ease-in-out infinite;
}

@keyframes growthTrend {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Process CTA Section */
.process-cta {
    margin-top: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 60px 40px;
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn {
    background: white;
    color: var(--primary-red);
    border: none;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Value Proposition Section */
.value-proposition {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.value-header {
    text-align: center;
    margin-bottom: 40px;
}

.value-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--dark-red));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(172, 0, 0, 0.2);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(172, 0, 0, 0.1), rgba(172, 0, 0, 0.05));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    transform: scale(1.1);
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.value-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1.3;
}

.value-text span {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* Mobile Responsiveness for Process Section */
@media (max-width: 992px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-timeline::before {
        left: 25px;
        transform: none;
        width: 3px;
    }
    
    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 70px;
        margin-bottom: 60px;
    }
    
    .step-number {
        left: 25px;
        transform: none;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content {
        width: 100%;
        margin: 0 !important;
        padding: 25px 20px;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .step-features {
        margin-bottom: 15px;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 4px 10px;
        margin: 2px;
    }
    
    .step-deliverable {
        padding: 12px;
        font-size: 0.85rem;
        margin-top: 15px;
    }
    
    .step-visual {
        display: none; /* Hide visual elements on mobile to save space */
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .result-item {
        padding: 20px 15px;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    .result-label {
        font-size: 0.9rem;
    }
    
    .value-proposition {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .value-header h4 {
        font-size: 1.5rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 18px;
    }
    
    .value-icon {
        min-width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .value-text strong {
        font-size: 1rem;
    }
    
    .value-text span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .process-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .process-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .process-step {
        margin-bottom: 40px;
        padding-left: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 20px;
    }
    
    .process-timeline::before {
        left: 20px;
        width: 2px;
    }
    
    .step-content {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .step-features {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .step-deliverable {
        padding: 10px;
        font-size: 0.8rem;
        margin-top: 12px;
        border-radius: 8px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .process-results {
        padding: 30px 20px;
        margin-top: 40px;
        border-radius: 20px;
    }
    
    .results-header h3 {
        font-size: 1.6rem;
    }
    
    .results-header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .value-proposition {
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .value-header h4 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .value-grid {
        gap: 15px;
    }
    
    .value-item {
        padding: 15px;
        gap: 12px;
    }
    
    .value-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .value-text strong {
        font-size: 0.95rem;
    }
    
    .value-text span {
        font-size: 0.85rem;
    }
    
    .process-cta {
        margin-top: 50px;
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-content .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 50px 0;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .process-title {
        font-size: 1.6rem;
    }
    
    .process-description {
        font-size: 0.95rem;
    }
    
    .process-step {
        margin-bottom: 30px;
        padding-left: 50px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        left: 15px;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .step-content {
        padding: 15px 12px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .step-deliverable {
        padding: 8px;
        font-size: 0.75rem;
        margin-top: 10px;
    }
    
    .process-results {
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .results-header h3 {
        font-size: 1.4rem;
    }
    
    .results-header p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .result-item {
        padding: 15px 10px;
    }
    
    .result-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .result-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .result-label {
        font-size: 0.85rem;
    }
    
    .value-proposition {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .value-header h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .value-grid {
        gap: 12px;
    }
    
    .value-item {
        padding: 12px;
        gap: 10px;
    }
    
    .value-icon {
        min-width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .value-text strong {
        font-size: 0.9rem;
    }
    
    .value-text span {
        font-size: 0.8rem;
    }
    
    .process-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-content .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

/* Add animation for service circles on scroll */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Add a subtle pulse animation to the process line */
.process-line {
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

.service-circle:hover .circle-content p {
    transform: translateY(2px);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    color: var(--dark-bg);
    text-align: center;
}

.portfolio-header {
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* About Section */
.about-section {
    background-color: var(--bg-cream);
    padding: 100px 0;
    color: var(--dark-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission Statement Styling */
.mission-container {
    background-color: rgba(172, 0, 0, 0.05);
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-header {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission-header h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.mission-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-red), var(--accent-gold));
    margin: 0 auto;
    border-radius: 3px;
}

.mission-statement {
    position: relative;
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: #333;
    position: relative;
    z-index: 1;
}

.mission-statement::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    color: rgba(172, 0, 0, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.mission-statement::after {
    content: '"';
    position: absolute;
    bottom: -80px;
    right: -20px;
    font-size: 120px;
    color: rgba(172, 0, 0, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-bg);
    font-weight: 500;
}



/* Contact Section */
.contact-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    color: var(--dark-bg);
}

/* Booking Section */
.booking-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    color: var(--dark-bg);
}

.booking-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.booking-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

/* Quiz Container */
.quiz-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: visible;
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Quiz Progress */
.quiz-progress {
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    transition: opacity 0.5s ease;
}

.progress-bar {
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-red), #d4c789);
    width: 25%; /* Start at 25% for first step */
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Welcome Screen Styles */
.welcome-screen {
    text-align: center;
    padding: 20px 0;
    max-width: 700px;
    margin: 0 auto;
}

.welcome-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.welcome-screen h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.welcome-screen p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(172, 0, 0, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background-color: rgba(172, 0, 0, 0.08);
}

.feature-icon {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-right: 15px;
}

.feature-text {
    font-size: 1.05rem;
    color: #333;
}

.btn-start {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(172, 0, 0, 0.3);
    margin-top: 10px;
    text-decoration: none;
}

.btn-start:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 0, 0, 0.4);
}

.btn-start .btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-start:hover .btn-icon {
    transform: translateX(5px);
}

.step.active {
    border-color: var(--primary-red);
    background-color: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.step.completed {
    border-color: var(--primary-red);
    background-color: white;
    color: var(--primary-red);
}

/* Quiz Steps */
.quiz-steps {
    position: relative;
    min-height: 600px;
    overflow: visible;
}

.quiz-step {
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto;
}

.quiz-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
    height: auto;
}

.quiz-step h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-bg);
    text-align: center;
}

/* Quiz Header */
.quiz-header {
    text-align: center;
    margin-bottom: 40px;
}

.quiz-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 600;
}

.quiz-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Quiz Options */
.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.quiz-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.quiz-option:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(172, 0, 0, 0.15);
}

.quiz-option.selected {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #fff 0%, #fef5f5 100%);
    box-shadow: 0 8px 25px rgba(172, 0, 0, 0.2);
}

.option-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
    min-width: 40px;
    text-align: center;
}

.option-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-bg);
    font-weight: 600;
}

.option-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.quiz-navigation .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back {
    background: #f5f5f5;
    color: #666;
}

.btn-back:hover {
    background: #e0e0e0;
    color: #333;
}

.btn-next, .btn-submit {
    background: var(--primary-red);
    color: white;
}

.btn-next:hover, .btn-submit:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.btn-next:disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.btn-start {
    background: var(--primary-red);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-start:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

/* Optimized Booking Hero */
.booking-hero {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff4444, var(--primary-red));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.booking-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(172, 0, 0, 0.3);
}

.booking-badge i {
    margin-right: 5px;
}

.booking-hero h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 700;
    line-height: 1.2;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.4;
}

/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
    text-align: left;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-prop:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(172, 0, 0, 0.1);
}

.prop-icon {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-top: 2px;
}

.prop-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-bg);
    margin-bottom: 3px;
}

.prop-text span {
    font-size: 0.9rem;
    color: #666;
}

/* Social Proof */
.social-proof {
    margin-bottom: 35px;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Optimized CTA */
.btn-start-optimized {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(172, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-start-optimized::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-start-optimized:hover::before {
    left: 100%;
}

.btn-start-optimized:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(172, 0, 0, 0.4);
}

.cta-details {
    margin-top: 20px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
}

.cta-features span {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-features i {
    color: var(--primary-red);
}

/* Urgency Note */
.urgency-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #856404;
    font-weight: 500;
}

.urgency-note i {
    color: #ff6b35;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Quiz Form */
.quiz-form {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.quiz-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.quiz-form input,
.quiz-form textarea,
.quiz-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: white;
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.quiz-form textarea::placeholder,
.quiz-form input::placeholder {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #999;
    font-size: 1rem;
}

.quiz-form input:focus,
.quiz-form textarea:focus,
.quiz-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(172, 0, 0, 0.1);
}

.quiz-form label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 8px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design for Quiz */
@media (max-width: 768px) {
    .quiz-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quiz-option {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .option-icon {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }
    
    .quiz-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .quiz-navigation .btn {
        width: 100%;
        justify-content: center;
    }
    
    .booking-content h2 {
        font-size: 2rem;
    }
    
    .quiz-header h3 {
        font-size: 1.5rem;
    }
    
    /* Optimized Booking Hero Mobile */
    .booking-hero {
        padding: 30px 20px;
    }
    
    .booking-hero h3 {
        font-size: 1.8rem;
    }
    
    .booking-subtitle {
        font-size: 1.1rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat strong {
        font-size: 1.5rem;
    }
    
    .btn-start-optimized {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .urgency-note {
        padding: 10px 15px;
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Calendar Booking System */
.calendar-booking {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-container {
    background: white;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h4 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin: 0;
    font-weight: 600;
}

.calendar-nav {
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: #666;
    padding: 10px 5px;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.calendar-day.other-month {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available {
    background: #f8f9fa;
    color: var(--dark-bg);
    border: 1px solid #e0e0e0;
}

.calendar-day.available:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(172, 0, 0, 0.3);
}

.calendar-day.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.unavailable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ccc;
    transform: translateY(-50%);
}

/* Time Slots */
.time-slots {
    background: white;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 30px;
}

.time-slots h5 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
    font-weight: 600;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.time-slot {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background: white;
}

.time-slot:hover {
    border-color: var(--primary-red);
    background: #fef5f5;
    transform: translateY(-2px);
}

.time-slot.selected {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(172, 0, 0, 0.3);
}

.time-slot.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ddd;
}

.time-slot.unavailable:hover {
    transform: none;
    background: #f5f5f5;
    border-color: #ddd;
}

/* Selected DateTime Summary */
.selected-datetime {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.selection-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selection-summary i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.selection-details strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.selection-details span {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 600;
}

/* Booking Summary */
.booking-summary {
    margin-bottom: 30px;
}

.summary-card {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(172, 0, 0, 0.3);
}

.summary-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.summary-details strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.summary-details span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.95;
}

.summary-details small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-container,
    .time-slots {
        padding: 20px 15px;
    }
    
    .calendar-grid {
        gap: 4px;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .time-slot {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .selection-summary {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 100vh;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Success Animation */
.success-animation {
    position: relative;
    margin-bottom: 40px;
}

.checkmark-container {
    display: inline-block;
    position: relative;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(172, 0, 0, 0.3);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checkmark-circle.animate {
    transform: scale(1);
}

.checkmark {
    width: 30px;
    height: 15px;
    border: 4px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0;
    animation: checkmark-draw 0.5s ease-in-out 0.6s forwards;
}

@keyframes checkmark-draw {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}

.success-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0;
}

.particle.animate {
    animation: particle-burst 1s ease-out forwards;
}

.particle:nth-child(1) { transform: rotate(0deg) translateX(60px); }
.particle:nth-child(2) { transform: rotate(72deg) translateX(60px); }
.particle:nth-child(3) { transform: rotate(144deg) translateX(60px); }
.particle:nth-child(4) { transform: rotate(216deg) translateX(60px); }
.particle:nth-child(5) { transform: rotate(288deg) translateX(60px); }

@keyframes particle-burst {
    0% {
        opacity: 1;
        transform: rotate(var(--rotation, 0deg)) translateX(0px) scale(1);
    }
    100% {
        opacity: 0;
        transform: rotate(var(--rotation, 0deg)) translateX(80px) scale(0);
    }
}

/* Thank You Message */
.thank-you-message h1 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Booking Confirmation Card */
.booking-confirmation-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-red);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.booking-confirmation-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin: 0;
    font-weight: 600;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #666;
}

.detail-label i {
    color: var(--primary-red);
    width: 16px;
}

.detail-value {
    font-weight: 600;
    color: var(--dark-bg);
}

/* Next Steps Timeline */
.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 40px;
    font-weight: 600;
}

.steps-timeline {
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), #ff4444);
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.timeline-step.animate {
    transform: translateX(0);
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(172, 0, 0, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Preparation Tips */
.preparation-tips {
    margin-bottom: 50px;
}

.preparation-tips h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.preparation-tips h3 i {
    color: var(--primary-red);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.tip-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tip-content h4 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
    font-weight: 600;
}

.tip-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Contact Information */
.contact-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-method:hover {
    color: var(--dark-red);
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.1rem;
}

/* Social Proof Section */
.social-proof-section {
    margin-bottom: 50px;
}

.social-proof-section h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 30px;
    font-weight: 600;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(172, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.testimonial-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 80px 0 30px;
    }
    
    .thank-you-message h1 {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .booking-confirmation-card,
    .contact-info {
        padding: 20px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .steps-timeline::before {
        left: 15px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Option Grid for Step 1 */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.option-card {
    background-color: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(172, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.selected {
    border-color: var(--primary-red);
    background-color: rgba(172, 0, 0, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(172, 0, 0, 0.1);
}

.option-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary-red);
    font-size: 16px;
}

.option-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.option-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.option-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Option List for Steps 2-3 */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.option-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.option-item.selected {
    border-color: var(--primary-red);
    background-color: rgba(172, 0, 0, 0.05);
}

.option-radio {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.option-item.selected .option-radio {
    border-color: var(--primary-red);
}

.option-item.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-red);
}

.option-text {
    flex: 1;
    text-align: left;
}

.option-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.option-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Quiz Navigation */
.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-prev, .btn-next {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-prev {
    background-color: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.btn-prev:hover {
    background-color: #f5f5f5;
    color: var(--dark-bg);
    border-color: #bbb;
    transform: translateY(-1px);
}

.btn-next {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 12px rgba(172, 0, 0, 0.3);
}

.btn-next:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 0, 0, 0.4);
}

.btn-next:active {
    transform: translateY(-1px);
}

.btn-prev .btn-icon {
    margin-right: 8px;
}

.btn-next .btn-icon {
    margin-left: 8px;
}

/* Form in Step 4 */
.quiz-step .form-group {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    overflow: visible;
}

.quiz-step[data-step="4"] {
    min-height: 450px;
}

.quiz-step input,
.quiz-step textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: transparent;
    color: var(--dark-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.quiz-step input:focus,
.quiz-step textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.1);
    transform: translateY(-2px);
}

.quiz-step label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: white;
    padding: 0 5px;
}

.quiz-step .form-group.input-active label,
.quiz-step input:focus ~ label,
.quiz-step textarea:focus ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-red);
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group.input-active::after {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: transparent;
    color: var(--dark-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group.input-active label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-red);
    background-color: white;
    padding: 0 5px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: 'MuseoModerno', cursive;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.11em;
    margin-bottom: 30px;
    color: var(--text-white);
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-info {
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .main-logo {
        font-size: 80px;
    }
    
    .logo-subtitle {
        font-size: 20px;
        letter-spacing: 0.2em;
    }
    
    /* Reduce animation intensity on mobile for better performance */
    .hero .creative-element {
        opacity: 0.05;
        animation-duration: 20s;
    }
    
    .hero::before,
    .hero::after {
        animation-duration: 40s;
    }
    
    .process-subtitle,
    .section-subtitle {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-circle {
        padding: 25px 15px;
    }
    
    .circle-content h3 {
        font-size: 1rem;
    }
    
    .circle-content p {
        font-size: 0.8rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        gap: 15px;
    }
    

    
    .footer-logo {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        font-size: 60px;
    }
    
    .logo-subtitle {
        font-size: 16px;
        letter-spacing: 0.15em;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        min-width: 140px;
    }
    
    .portfolio-button-container {
        gap: 15px;
        margin-top: 1.5rem;
    }
    
    .process-subtitle,
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .process-description {
        font-size: 0.9rem;
    }
    
    .service-circle {
        width: 160px;
        height: 140px;
    }
    
    .circle-number {
        top: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .circle-content h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .circle-content p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .about-content h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .about-content p,
    .contact-content p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .footer-logo {
        font-size: 36px;
    }
    
    /* Mobile Navigation Styles */
    .subtle-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin-top: 0;
        opacity: 1;
    }
    
    .subtle-nav.active {
        right: 0;
    }
    
    .subtle-nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .subtle-nav a {
        font-size: 1.1rem;
    }
    
    .logo-container.spotlight {
        transform: scale(1);
    }
}